golang.org/x/crypto/sha3.state.outputLen (field)

9 uses

	golang.org/x/crypto/sha3 (current package)
		hashes.go#L22: 	return &state{rate: 144, outputLen: 28, dsbyte: 0x06}
		hashes.go#L32: 	return &state{rate: 136, outputLen: 32, dsbyte: 0x06}
		hashes.go#L42: 	return &state{rate: 104, outputLen: 48, dsbyte: 0x06}
		hashes.go#L52: 	return &state{rate: 72, outputLen: 64, dsbyte: 0x06}
		hashes.go#L59: func NewLegacyKeccak256() hash.Hash { return &state{rate: 136, outputLen: 32, dsbyte: 0x01} }
		hashes.go#L65: func NewLegacyKeccak512() hash.Hash { return &state{rate: 72, outputLen: 64, dsbyte: 0x01} }
		sha3.go#L46: 	outputLen int             // the default output size in bytes
		sha3.go#L54: func (d *state) Size() int { return d.outputLen }
		sha3.go#L190: 	hash := make([]byte, dup.outputLen)